home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Il Mio Computer 2006 May
/
Mico05CD.bin
/
Utility
/
QuickZip
/
quickzip.exe
/
{app}
/
Scripts
/
Convert all Zip to 7z.akp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-12-08
|
315 b
|
14 lines
var FileList : TStrings;
i : integer;
begin
Open('xyz.zip');
FileList := TStringList.Create;
FileList := PollFileList('c:\temp\*.zip',false);
for i := 0 to FileList.count -1 do
begin
Writeln('Converting ...'+filelist.strings[i]);
Convert(filelist.strings[i],'7Z');
end;
FileList.Free;
end.